home *** CD-ROM | disk | FTP | other *** search
- int Forward(int objectptr,int steps) {
- CAction( objectptr, "n", "Forward" , steps);
- return steps;
-
- }
-
- int Backward(int objectptr,int steps) {
- CAction( objectptr, "n", "Backward" , steps);
-
- return steps;
-
- }
- int TurnLeft(int objectptr,int steps) {
- CAction( objectptr, "n", "TurnLeft" , steps);
-
- return steps;
-
- }
- int TurnRight(int objectptr,int steps) {
- CAction( objectptr, "n", "TurnRight" , steps);
- return steps;
-
- }
- int Jump(int objectptr,int steps) {
- CAction( objectptr, "n", "Jump" , steps);
-
- return steps;
-
- }
- int Fire(int objectptr,int steps) {
- CAction( objectptr, "n", "Fire" , steps);
-
- return steps;
-
- }
-